home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 (Alt) / Vol 132.iso / games / hewitt.swf / scripts / DefineButton2_357 / BUTTONCONDACTION on(press).as
Encoding:
Text File  |  2011-06-09  |  288 b   |  15 lines

  1. on(press){
  2.    i = 1;
  3.    while(i < 100)
  4.    {
  5.       _root.inven["box" + i].gotoAndStop(1);
  6.       _root["taken" + i] = 0;
  7.       _root["event" + i] = 0;
  8.       i++;
  9.    }
  10.    _root.micon.gotoAndStop(1);
  11.    stopAllSounds();
  12.    _root.gotoAndStop(1);
  13.    _root.inven.gotoAndStop(1);
  14. }
  15.